home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1986-04-14 | 655 b | 34 lines | [TEXT/MPS ] |
- DEFINITION MODULE MultiSkelGlobals;
-
- FROM MenuManager IMPORT MenuHandle;
- FROM QuickDraw IMPORT RgnHandle;
- FROM WindowManager IMPORT WindowPtr;
-
- CONST
- shiftKey = 9; (* Bit 9 of the modifiers word *)
- aboutAlrt = 1000;
- getInfoDlog = 1001;
- fileMenuRes = 1001;
- editMenuRes = 1002;
- helpWindRes = 1000;
- editWindRes = 1001;
- zoomWindRes = 1002;
- rgnWindRes = 1003;
- helpTextRes = 1000;
-
- VAR
- editMenu: MenuHandle;
- helpWind: WindowPtr;
- editWind: WindowPtr;
- zoomWind: WindowPtr;
- rgnWind: WindowPtr;
- oldClip: RgnHandle;
-
- PROCEDURE DrawGrowBox(wind: WindowPtr);
-
- PROCEDURE SetWindClip(wind: WindowPtr);
-
- PROCEDURE ResetWindClip;
-
- END MultiSkelGlobals.
-